pageState

Class: com.microstrategy.web.app.taglibs.PageStateTag

Usage:

This custom tag is used for obtaining a JavaScript string with the state of all the beans defined on the page, assigned to a variable that will be specified on the attribute. For example:
The following tag will create a JavaScript variable as var pageState and its value will be the minimal ({@link EnumWebPersistableState#MINIMAL_STATE_INFO}) state of the beans on the page:
 <web:pageState attribute="var pageState" stateLevel="0" runat="server" />;
 

 var pageState = "...string with the state of the beans on the page...";
 


Name Required? Description
attribute false Indicates the name of the JavaScript variable where the value of the page state will be assigned to.
runat true Indicates that the ASP.Net control should be processed on the server
stateLevel false Indicates the level of the information to record from each bean state on the page.
Usage:
The value to specify here should be any valid numeric value from the EnumWebPersistableState enumeration.